home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / tex / style / misc / parskip.sty < prev    next >
Text File  |  1995-11-25  |  1KB  |  34 lines

  1. % This is PARSKIP.STY by H.Partl, TU Wien, as of 19 Jan 1989.
  2. % Document Style Option to be used with any style and with any size.
  3. % It produces the following Paragraph Layout:
  4. %     Zero Parindent and non-zero Parskip. The stretchable glue in \parskip
  5. %     helps LaTeX in finding the best place for page breaks.
  6.      
  7. \parskip=0.5\baselineskip \advance\parskip by 0pt plus 2pt
  8. \parindent=\z@
  9.      
  10. % To accompany this, the vertical spacing in the list environments is changed
  11. % to use the same as \parskip in all relevant places (for normalsize only):
  12. %   \parsep = \parskip
  13. %   \itemsep = \z@ % add nothing to \parskip between items
  14. %   \topsep = \z@ % add nothing to \parskip before first item
  15.      
  16. \def\@listI{\leftmargin\leftmargini
  17.    \topsep\z@ \parsep\parskip \itemsep\z@}
  18. \let\@listi\@listI
  19. \@listi
  20.      
  21. \def\@listii{\leftmargin\leftmarginii
  22.    \labelwidth\leftmarginii\advance\labelwidth-\labelsep
  23.    \topsep\z@ \parsep\parskip \itemsep\z@}
  24.      
  25. \def\@listiii{\leftmargin\leftmarginiii
  26.     \labelwidth\leftmarginiii\advance\labelwidth-\labelsep
  27.     \topsep\z@ \parsep\parskip \itemsep\z@}
  28.      
  29. % Note that listiv, listv and listvi don't change vertical parameters.
  30.      
  31. \endinput
  32.      
  33.      
  34.